home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': '',
- 'Copyright': '',
- 'Description': ''
- }
-
- def Preset_Tiles():
- return {
- 'Ambience': 0,
- 'Angle': 315,
- 'BorderSize': 1,
- 'Color': (255,255,255),
- 'Depth': 35,
- 'Elevation': 60,
- 'Intensity': 50,
- 'Shininess': 0,
- 'Smoothness': 23,
- 'TileAngularity': 15,
- 'TileShape': App.Constants.TileShape.Square,
- 'TileSize': 20
- }
-
- def Do(Environment):
- App.Do(Environment, 'Tiles', Preset_Tiles())
-
-